翻訳と辞書
Words near each other
・ Insentiraja laxipella
・ INSEP
・ Inseparability
・ Inseparable
・ Inseparable (album)
・ Inseparable (film)
・ Inseparable (song)
・ Inseparable differential equation
・ Inserra Supermarkets
・ Insert
・ Insert (composites)
・ Insert (effects processing)
・ Insert (filmmaking)
・ Insert (molecular biology)
・ Insert (print advertising)
Insert (SQL)
・ Insert card
・ Insert key
・ Insert Knob A in Hole B
・ Insert nut
・ Insert studio
・ Insert Subscriber Data
・ Insert Therapeutics
・ Inserter category
・ Insertion
・ Insertion (genetics)
・ Insertion aria
・ Insertion device
・ Insertion gain
・ Insertion loss


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Insert (SQL) : ウィキペディア英語版
Insert (SQL)
An SQL INSERT statement adds one or more records to any single table in a relational database.
==Basic form==
Insert statements have the following form:
INSERT INTO ''table'' (''column1'' (''column2'', ''column3'' ... )) VALUES (''value1'' (''value2'', ''value3'' ... ))
The number of columns and values must be the same. If a column is not specified, the default value for the column is used. The values specified (or implied) by the INSERT statement must satisfy all the applicable constraints (such as primary keys, CHECK constraints, and NOT NULL constraints). If a syntax error occurs or if any constraints are violated, the new row is not added to the table and an error returned instead.
Example:

INSERT INTO phone_book (name, number) VALUES ('John Doe', '555-1212');

Shorthand may also be used, taking advantage of the order of the columns when the table was created. It is not required to specify all columns in the table since any other columns will take their default value or remain null:
* INSERT INTO ''table'' VALUES (''value1'', (... ))
Example for inserting data into 2 columns in the phone_book table and ignoring any other columns which may be after the first 2 in the table.

INSERT INTO phone_book VALUES ('John Doe', '555-1212');


抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Insert (SQL)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.